home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
enigma
/
earcd
/
sviluppo
/
svilupp2
/
amphn192.lha
/
src
/
compress
/
ADPCM.h
next >
Wrap
C/C++ Source or Header
|
1996-11-16
|
748b
|
22 lines
#ifndef ADPCM_H
#define ADPCM_H
extern __asm ULONG DecompressADPCM2(
register __a0 UBYTE *Source, register __d0 ULONG Length,
register __a1 UBYTE *Destination, register __d1 ULONG JoinCode);
extern __asm ULONG DecompressADPCM3(
register __a0 UBYTE *Source, register __d0 ULONG Length,
register __a1 UBYTE *Destination, register __d1 ULONG JoinCode);
extern __asm ULONG CompressADPCM2(
register __a0 UBYTE *Source, register __d0 ULONG Length,
register __a1 UBYTE *Destination, register __d1 ULONG JoinCode);
extern __asm ULONG CompressADPCM3(
register __a0 UBYTE *Source, register __d0 ULONG Length,
register __a1 UBYTE *Destination,register __d1 ULONG JoinCode);
#endif